home *** CD-ROM | disk | FTP | other *** search
/ OpenGL Superbible (2nd Edition) / OpenGL SuperBible e2.iso / tools / GLUT-3.7 / PROGS / perf_harness / Makefile.sgi < prev    next >
Encoding:
Makefile  |  1998-08-12  |  527 b   |  32 lines

  1. #!smake
  2. #
  3. # Copyright (c) Mark J. Kilgard, 1995, 1997.
  4. #
  5.  
  6. TOP = ../..
  7. include $(TOP)/glutdefs
  8. include $(ROOT)/usr/include/make/commondefs
  9.  
  10. LD_QUICKSTART_INFO=
  11. LN = ln -s
  12. MV = mv
  13. RM = -rm -rf
  14.  
  15. TARGETS = perf_torus
  16.  
  17. LLDLIBS = $(GLUT) -lGLU -lGL -lXmu -lXext -lX11 -lm
  18.  
  19. SRCS = gl_harness.c torus.c
  20. OBJS = $(SRCS:.c=.o)
  21.  
  22. LCOPTS = -I$(TOP)/include -fullwarn
  23. LWOFF = ,813,852,827,826
  24. LDIRT = *~ *.bak *.pure
  25.  
  26. default : $(TARGETS)
  27.  
  28. perf_torus: gl_harness.o torus.o
  29.     $(CCF) -o $@ gl_harness.o torus.o $(LDLIBS)
  30.  
  31. include $(COMMONRULES)
  32.